.business-dev-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f0f4f9, #ffffff);
    border-radius: 20px;
    text-align: center;
    animation: fadeZoomIn 1.2s ease-in;
  }
  
  .dev-header h2 {
    font-size: 36px;
    color: #1c3d6e;
    margin-bottom: 10px;
    animation: slideTop 0.8s ease-in-out;
  }
  
  .dev-header p {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
    animation: fadeInText 1s ease;
  }
  
  .dev-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .dev-card {
    background: #ffffff;
    width: 270px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
    animation: popIn 1s forwards;
  }
  
  .dev-card:nth-child(1) { animation-delay: 0.2s; }
  .dev-card:nth-child(2) { animation-delay: 0.4s; }
  .dev-card:nth-child(3) { animation-delay: 0.6s; }
  
  .dev-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  
  .dev-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .dev-card h3 {
    font-size: 20px;
    color: #0c4da2;
    margin-bottom: 10px;
  }
  
  .dev-card p {
    font-size: 15px;
    color: #666;
  }
  
  /* Animations */
  @keyframes popIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeZoomIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes slideTop {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .dev-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .dev-card {
      width: 90%;
    }
  }
  